home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.1 KB | 48 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _SUCURSOR_
- #define _SUCURSOR_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- #ifndef _STORAGEU_
- #include "StorageU.idl"
- #endif
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
- interface ODStorageUnitCursor;
-
- //==============================================================================
- // ODStorageUnitCursor
- //==============================================================================
-
- interface ODStorageUnitCursor : ODObject
- {
- void InitStorageUnitCursor(in ODPropertyName propertyName,
- in ODValueType valueType,
- in ODValueIndex valueIndex);
-
- void GetCursor(out ODPropertyName propertyName,
- out ODValueType valueType,
- out ODValueIndex valueIndex);
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit;
- releaseorder:
- InitStorageUnitCursor,
- GetCursor;
-
- };
-
- #endif
- };
-
- #endif // _SUCURSOR_
-